home *** CD-ROM | disk | FTP | other *** search
- Path: news.cc.sunysb.edu!usenet
- From: dkat@psych1.psy.sunysb.edu (DK)
- Newsgroups: comp.lang.c
- Subject: Re: Defeat password by C
- Date: Fri, 19 Apr 1996 17:44:32 GMT
- Organization: State University of New York at Stony Brook
- Message-ID: <4l8832$9jb@abel.cc.sunysb.edu>
- References: <4l4cns$gs0@usenetp1.news.prodigy.com> <4l4n57INNb5g@keats.ugrad.cs.ubc.ca>
- NNTP-Posting-Host: catsam.psy.sunysb.edu
- X-Newsreader: Forte Free Agent 1.0.82
-
- c2a192@ugrad.cs.ubc.ca (Kazimir Kylheku) wrote:
-
- >In article <4l4cns$gs0@usenetp1.news.prodigy.com>,
- >Bubba Meigs <VRLL67A@prodigy.com> wrote:
- >>I am a student who trying to learn how to program C++.
- >>I just wonder if anyone know how to write a program by C++ to break the
- >>password.
-
- >main()
- >{
- > char pass[] = "mylamepassword";
-
- > pass[8] = 0;
- /* do you mean pass[8] = '\0'; ? if so why? if not what does this
- do? DK - opps - this is a reference to c++ which I know not. I
- thought we were doing good old C*. Still the questions remain and are
- sincere DK*/
-
- > return 0;
- >}
-
- On 17 Apr 1996 23:23:35 -0700, you wrote:
-
- >In article <4l4cns$gs0@usenetp1.news.prodigy.com>,
- >Bubba Meigs <VRLL67A@prodigy.com> wrote:
- >>I am a student who trying to learn how to program C++.
- >>I just wonder if anyone know how to write a program by C++ to break the
- >>password.
-
-
-
-